home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / managers / ILayoutManagerClient.as < prev    next >
Text File  |  2009-02-12  |  840b  |  32 lines

  1. package mx.managers
  2. {
  3.    import flash.events.IEventDispatcher;
  4.    
  5.    public interface ILayoutManagerClient extends IEventDispatcher
  6.    {
  7.        
  8.       
  9.       function get updateCompletePendingFlag() : Boolean;
  10.       
  11.       function set updateCompletePendingFlag(param1:Boolean) : void;
  12.       
  13.       function set initialized(param1:Boolean) : void;
  14.       
  15.       function validateProperties() : void;
  16.       
  17.       function validateDisplayList() : void;
  18.       
  19.       function get nestLevel() : int;
  20.       
  21.       function get initialized() : Boolean;
  22.       
  23.       function get processedDescriptors() : Boolean;
  24.       
  25.       function validateSize(param1:Boolean = false) : void;
  26.       
  27.       function set nestLevel(param1:int) : void;
  28.       
  29.       function set processedDescriptors(param1:Boolean) : void;
  30.    }
  31. }
  32.